home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-05-03 | 429 b | 30 lines |
- include ../make.cfg
-
- #
- # Override libraries, since these programs don't use
- # the MotifApp framework
-
- LIBS=$(XLIBS)
-
- all: form hello pushme widgettree
-
- hello: hello.o
- $(CC) -o hello hello.o $(LIBS)
-
-
- pushme: pushme.o
- $(CC) -o pushme pushme.o $(LIBS)
-
-
- widgettree: widgettree.o
- $(CC) -o widgettree widgettree.o $(LIBS)
-
- form: form.o
- $(CC) -o form form.o $(LIBS)
-
- clobber:
- rm -f *.o *~*
- rm -f hello pushme widgettree form
-
-
-